* fileio.c (Fset_visited_file_modtime): We're only passing two
authorJim Blandy <jimb@redhat.com>
Sat, 19 Jun 1993 01:04:50 +0000 (01:04 +0000)
committerJim Blandy <jimb@redhat.com>
Sat, 19 Jun 1993 01:04:50 +0000 (01:04 +0000)
arguments to the file name handler; use call2, not call3.

src/fileio.c

index d21007a7ce84462a91fce249f7b48ea42f5199e4..41838f0937ec4077ba41c42affcfac676bf45194 100644 (file)
@@ -2941,7 +2941,7 @@ An argument specifies the modification time value to use\n\
       handler = Ffind_file_name_handler (filename);
       if (!NILP (handler))
        /* The handler can find the file name the same way we did.  */
-       return call3 (handler, Qset_visited_file_modtime, Qnil);
+       return call2 (handler, Qset_visited_file_modtime, Qnil);
       else if (stat (XSTRING (filename)->data, &st) >= 0)
        current_buffer->modtime = st.st_mtime;
     }